JavaScript

{dialog.object}_listNavigate Method

Syntax

{dialog.object}._listNavigate(listId,direction);

Arguments

listIdstring

The name of the List control.

directionstring

Configuration of list, can be one of the following:

Direction
Description
first

Navigate to the first page in the List control.

prev

Navigate to the previous page in the List control.

next

Navigate to the next page in the List control.

last

Navigate to the last page in the List control.

Description

Navigates to the next/previous 'page' of data in a List that has been configured to use pagination. List must be configured as paginated.

Example

{dialog.object}.__listNavigate('MYLIST1','next');

See Also